home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
pascal
/
tegl6b.zip
/
INTROPAK.EXE
/
lha
/
FRAME3.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-07-16
|
398b
|
24 lines
{-- frame3.pas}
{$F+}
USES teglunit,teglmain;
VAR ifs : ImageStkPtr;
function cancelevent(frame: ImageStkPtr; mouse: MsClickPtr): Word;
BEGIN
dropstackimage(ifs);
END;
BEGIN
easytegl;
easyout;
PushImage(50,50,200,150);
ShadowBox(50,50,200,150);
ifs := StackPtr;
DefineSquareButtonText(ifs,0,0,80,30,5,5,'CANCEL',cancelevent);
TeglSupervisor;
END.